home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / Boom! '94 / HackGlue.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-24  |  214 b   |  21 lines  |  [TEXT/MMCC]

  1. #include <SANE.h>
  2. #undef NAN
  3. #include <fp.h>
  4.  
  5.  
  6. double_t sin ( double_t x )
  7. {
  8.     extended80 temp = x;
  9.     Sin(&temp);
  10.     
  11.     return temp;
  12. }
  13.  
  14. double_t cos ( double_t x )
  15. {
  16.     extended80 temp = x;
  17.     Cos(&temp);
  18.     
  19.     return temp;
  20. }
  21.